home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / arch10.zip / ARCH.PPS < prev    next >
Text File  |  1993-05-16  |  613b  |  21 lines

  1. ;---------------------------------------------
  2. ;  Automatic Read Command Help
  3. ;  v 1.0 - 05/16/93 - Gerry Schechter
  4. ;---------------------------------------------
  5.  
  6. String CmdLine
  7.  
  8. CmdLine = TokenStr()                   ; Save user's command
  9.  
  10. If (Len(CmdLine) > 0) Then             ; User doesn't need help if true
  11.    KbdStuff "R "+CmdLine+Chr(13)
  12.    End
  13. EndIf
  14.  
  15. PrintLn ""
  16. PrintLn "@X0AType @X0FR S@X0A to read mail since your last time on."
  17. PrintLn "@X0AType @X0FR Y S@X0A to read only your mail since last time on."
  18. PrintLn "@X0AType @X0FR H@X0A for additional help with reading mail."
  19.  
  20. End
  21.